/* https://www.joshwcomeau.com/css/custom-css-reset/ */

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}


/* 2. Remove default margin */
/* 4.5 Sophisticated calculation of line-height */
* {
  margin: 0;
  line-height: calc(1em + 0.5rem);
}


/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}


/* 4. Add accessible line-height */
/* 5. Improve text rendering */
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}


/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}


/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}


/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}


/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

 
/* Motion Sensitivity */
@media screen and (prefers-reduced-motion: reduce) {
* {
 animation-duration: 0.001ms  !important;
 animation-iteration-count: 1 !important;
 transition-duration: 0.001ms !important;
}
}
 
 
/* Input */
button,select {
  text-transform: none;
}
button,[type="button"],[type="reset"],[type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
  
  
/* Misc. */
summary {
  user-select: none;
}
template {
  display: none;
}